home *** CD-ROM | disk | FTP | other *** search
/ Basic Press Kit / Basic Press Kit.iso / pc / progthis.dxr / 00020.ls < prev    next >
Encoding:
Text File  |  2001-10-11  |  372 b   |  22 lines

  1. on startMovie
  2.   set the exitLock to 1
  3.   repeat with i = 2 to 4
  4.     puppetSprite(i, 1)
  5.   end repeat
  6.   set the width of sprite 22 to 0
  7.   updateStage()
  8.   startTimer()
  9.   repeat while the timer < 120
  10.     nothing()
  11.   end repeat
  12. end
  13.  
  14. on stopMovie
  15.   tell the stage
  16.     set the mouseDownScript to EMPTY
  17.   end tell
  18.   tell the stage
  19.     set the mouseUpScript to EMPTY
  20.   end tell
  21. end
  22.